
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
  background-color: #fffaf7;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background-color: #ffefd5;
  padding: 1rem 2rem;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header h1 {
  font-size: 2rem;
  color: #5e3c00;
}

/* Navigation */
nav {
  margin-top: 1rem;
}

#menuBtn {
  background-color: #ffb347;
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s ease;
}

#menuBtn:hover {
  background-color: #7b17ed;
}

#menu ul {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
  display: none;
  flex-direction: column;
  align-items: center;
}

#menu ul li {
  margin: 10px 0;
}

#menu ul li a {
  text-decoration: none;
  color: #5e3c00;
  font-weight: bold;
  transition: color 0.3s;
}

#menu ul li a:hover {
  color: #35e492;
}

#menu.show ul {
  display: flex;
}

.hidden {
  display: none;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1s ease;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff7b00;
}



section p {
  margin-bottom: 1rem;
}

/* Gallery */
#gallery img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 15px;
  margin: 10px;
  transition: transform 0.3s ease;
}

#gallery img:hover {
  transform: scale(1.1);
}

/* Team Section */
#team div {
  display: inline-block;
  margin: 1rem;
  text-align: center;
}

#team img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}

/* Testimonials */
blockquote {
  background: #fff3e0;
  padding: 1rem;
  border-left: 5px solid #ffa500;
  margin: 1rem 0;
  border-radius: 10px;
}

/* Contact Form */
#contact input,
#contact textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ffb347;
  border-radius: 8px;
  margin-bottom: 1rem;
}

#contact button {
  background-color: #ffa233;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

#contact button:hover {
  background-color: #ff8c00;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #ffefd5;
  color: #5e3c00;
  margin-top: 2rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (min-width: 768px) {
  #menu ul {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  #menuBtn {
    display: none;
  }

  #menu {
    display: block !important;
  }

  #team div {
    width: 45%;
  }

  #gallery a {
    display: inline-block;
  }
}
